home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Biz / swood / FW_Scripts.lha / FW_Scripts / ComplexShape / ComplexShape.readme next >
Text File  |  2004-07-02  |  2KB  |  47 lines

  1. ComplexShape 1.0 arexx script for FinalWriter 3+
  2. Written in part by Cary Driscoll (cary.here@att.net)
  3. Beginning of script taken from Softwood's Gfxclip script.
  4.  
  5. What it does:
  6.  
  7. This script turns a series of lines into a complex shape
  8. made up of lines and bezier curves.
  9.  
  10. How to use it:
  11.  
  12. Draw a series of lines to roughly make a path to be converted
  13. into a complex shape. Do not use the polygon tool. The path
  14. you draw must be made up of individual line segments drawn
  15. in the sequence and direction in which you wish the final path
  16. to progress.
  17.  
  18. The beginning of the first line you draw will be the beginning
  19. of the final shape. The end of the first line will be the second
  20. point in the shape. Draw additional lines, but note that only
  21. their end points are important to the script. The script assumes
  22. that a line's start point is the same as the endpoint of the
  23. previous line. This is helpful because after you draw a line, it
  24. becomes selected. So if you try to line up the next line you want
  25. to draw with an endpoint of the line you just drew you will end
  26. up moving the endpoint of the first line instead of drawing a
  27. second line from that point.
  28.  
  29. As it is, you can leave space between the ends of lines because
  30. the script only cares about where a particular line segment ends.
  31.  
  32. As you draw your sequence of lines keep in mind that regular lines
  33. will still be lines in the final complex shape, but lines with
  34. arrow tips will be converted into bezier curves.
  35.  
  36. The final complex shape will be either an open or closed path
  37. depending on how close you draw your last line's endpoint to
  38. the starting point of the first line in the path. The script
  39. will make the last point the same as the path's starting point
  40. and will close the path if the two points are within about 50
  41. micropoints of eachother.
  42.  
  43. After you have drawn all your line segments, select them all and
  44. run the script. The lines will remain, but the complex shape will
  45. be drawn on top of them. The bezier segments will appear to be
  46. straight lines until you change their control points.
  47.